home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevmswn.c < prev    next >
C/C++ Source or Header  |  1996-09-06  |  13KB  |  478 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevmswn.c */
  20. /*
  21.  * Microsoft Windows 3.n driver for Ghostscript.
  22.  * Original version by Russell Lang and Maurice Castro with help from
  23.  * Programming Windows, 2nd Ed., Charles Petzold, Microsoft Press;
  24.  * created from gdevbgi.c and gnuplot/term/win.trm 5th June 1992.
  25.  * Extensively modified by L. Peter Deutsch, Aladdin Enterprises.
  26.  */
  27. #include "gdevmswn.h"
  28. #include "gp.h"
  29. #include "gpcheck.h"
  30. #include "gsparam.h"
  31. #include "gdevpccm.h"
  32. #include "gsdll.h"
  33.  
  34. /* Forward references */
  35. private int win_set_bits_per_pixel(P2(gx_device_win *, int));
  36.  
  37. #define TIMER_ID 1
  38.  
  39. /* Open the win driver */
  40. int
  41. win_open(gx_device *dev)
  42. {    HDC hdc;
  43.     int code;
  44.  
  45.     if (dev->width == INITIAL_WIDTH)
  46.       dev->width  = (int)(8.5  * dev->x_pixels_per_inch);
  47.     if (dev->height == INITIAL_HEIGHT)
  48.       dev->height = (int)(11.0 * dev->y_pixels_per_inch);
  49.  
  50.     if (wdev->BitsPerPixel == 0) {
  51.         int depth;
  52.         /* Set parameters that were unknown before opening device */
  53.         /* Find out if the device supports color */
  54.         /* We recognize 1, 4, 8, 24 bit/pixel devices */
  55.         hdc = GetDC(NULL);    /* get hdc for desktop */
  56.         depth = GetDeviceCaps(hdc,PLANES) * GetDeviceCaps(hdc,BITSPIXEL);
  57.         if (depth > 8) {
  58.         wdev->BitsPerPixel = 24;
  59.         }
  60.         else if (depth >= 8) {
  61.         wdev->BitsPerPixel = 8;
  62.         }
  63.         else if (depth >= 4) {
  64.         wdev->BitsPerPixel = 4;
  65.         }
  66.         else {
  67.         wdev->BitsPerPixel = 1;
  68.         }
  69.         ReleaseDC(NULL,hdc);
  70.         wdev->mapped_color_flags = 0;
  71.     }
  72.  
  73.     if ( (code = win_set_bits_per_pixel(wdev, wdev->BitsPerPixel)) < 0 )
  74.         return code;
  75.  
  76.     if (wdev->nColors > 0) {
  77.         /* create palette for display */
  78.         if ((wdev->limgpalette = win_makepalette(wdev))
  79.         == (LPLOGPALETTE)NULL)
  80.         return win_nomemory();
  81.         wdev->himgpalette = CreatePalette(wdev->limgpalette);
  82.     }
  83.  
  84.     return 0;
  85. }
  86.  
  87. /* Make the output appear on the screen. */
  88. int
  89. win_sync_output(gx_device *dev)
  90. {
  91.     (*pgsdll_callback)(GSDLL_SYNC, (unsigned char *)wdev, 0);
  92.     return(0);
  93. }
  94.  
  95. /* Make the window visible, and display the output. */
  96. int
  97. win_output_page(gx_device *dev, int copies, int flush)
  98. {
  99.     (*pgsdll_callback)(GSDLL_PAGE, (unsigned char *)wdev, 0);
  100.     return 0;
  101. }
  102.  
  103. /* Close the win driver */
  104. int
  105. win_close(gx_device *dev)
  106. {
  107.     /* Free resources */
  108.     if (wdev->nColors > 0) {
  109.         gs_free(wdev->mapped_color_flags, 4096, 1, "win_set_bits_per_pixel");
  110.         DeleteObject(wdev->himgpalette);
  111.         gs_free((char *)(wdev->limgpalette), 1, sizeof(LOGPALETTE) + 
  112.         (1<<(wdev->color_info.depth)) * sizeof(PALETTEENTRY),
  113.         "win_close");
  114.     }
  115.     return(0);
  116. }
  117.  
  118. /* Map a r-g-b color to the colors available under Windows */
  119. gx_color_index
  120. win_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  121.   gx_color_value b)
  122. {
  123.     switch(wdev->BitsPerPixel) {
  124.       case 24:
  125.         return (((unsigned long)b >> (gx_color_value_bits - 8)) << 16) +
  126.                (((unsigned long)g >> (gx_color_value_bits - 8)) << 8) +
  127.                (((unsigned long)r >> (gx_color_value_bits - 8)));
  128.       case 8: {
  129.         int i;
  130.         LPLOGPALETTE lpal = wdev->limgpalette;
  131.         PALETTEENTRY *pep;
  132.         byte cr, cg, cb;
  133.         int mc_index;
  134.         byte mc_mask;
  135.  
  136.         /* Check for a color in the palette of 64. */
  137.         {    static const byte pal64[32] = {
  138.                 1, 0, 0, 0, 0,  0, 0, 0, 0, 0,
  139.                 1, 0, 0, 0, 0,  0, 0, 0, 0, 0,  0,
  140.                 1, 0, 0, 0, 0,  0, 0, 0, 0, 0,
  141.                 1
  142.             };
  143.             if ( pal64[r >> (gx_color_value_bits - 5)] &&
  144.                  pal64[g >> (gx_color_value_bits - 5)] &&
  145.                  pal64[b >> (gx_color_value_bits - 5)]
  146.                )
  147.                 return (gx_color_index)(
  148.                   ((r >> (gx_color_value_bits - 2)) << 4) +
  149.                   ((g >> (gx_color_value_bits - 2)) << 2) +
  150.                   (b >> (gx_color_value_bits - 2))
  151.                 );
  152.         }
  153.  
  154.         /* map colors to 0->255 in 32 steps */
  155.         cr = win_color_value(r);
  156.         cg = win_color_value(g);
  157.         cb = win_color_value(b);
  158.  
  159.         /* Search in palette, skipping the first 64. */
  160.         mc_index = ((cr >> 3) << 7) + ((cg >> 3) << 2) + (cb >> 6);
  161.         mc_mask = 0x80 >> ((cb >> 3) & 7);
  162.         if ( wdev->mapped_color_flags[mc_index] & mc_mask )
  163.           for ( i = wdev->nColors, pep = &lpal->palPalEntry[i];
  164.               --pep, --i >= 64;
  165.               )
  166.         {    if ( cr == pep->peRed &&
  167.                  cg == pep->peGreen &&
  168.                  cb == pep->peBlue
  169.                )
  170.                 return((gx_color_index)i);    /* found it */
  171.         }
  172.         
  173.         /* next try adding it to palette */
  174.         i = wdev->nColors;
  175.         if (i < 220) { /* allow 36 for windows and other apps */
  176.             LPLOGPALETTE lipal = wdev->limgpalette;
  177.             wdev->nColors = i+1;
  178.  
  179.             DeleteObject(wdev->himgpalette);
  180.              lipal->palPalEntry[i].peFlags = 0;
  181.             lipal->palPalEntry[i].peRed   =  cr;
  182.             lipal->palPalEntry[i].peGreen =  cg;
  183.             lipal->palPalEntry[i].peBlue  =  cb;
  184.             lipal->palNumEntries = wdev->nColors;
  185.             wdev->himgpalette = CreatePalette(lipal);
  186.  
  187.             wdev->mapped_color_flags[mc_index] |= mc_mask;
  188.             return((gx_color_index)i);    /* return new palette index */
  189.         }
  190.  
  191.         return(gx_no_color_index);  /* not found - dither instead */
  192.         }
  193.       case 4:
  194.         if ((r == g) && (g == b) && (r >= gx_max_color_value / 3 * 2 - 1)
  195.            && (r < gx_max_color_value / 4 * 3))
  196.             return ((gx_color_index)8);    /* light gray */
  197.         return pc_4bit_map_rgb_color(dev, r, g, b);
  198.     }
  199.     return (gx_default_map_rgb_color(dev,r,g,b));
  200. }
  201.  
  202. /* Map a color code to r-g-b. */
  203. int
  204. win_map_color_rgb(gx_device *dev, gx_color_index color,
  205.   gx_color_value prgb[3])
  206. {    gx_color_value one;
  207.     switch(wdev->BitsPerPixel) {
  208.       case 24:
  209.         one = (gx_color_value) (gx_max_color_value / 255);
  210.         prgb[0] = ((color)     & 255) * one;
  211.         prgb[1] = ((color>>8)  & 255) * one;
  212.         prgb[2] = ((color>>16) & 255) * one;
  213.         break;
  214.       case 8:
  215.         if (!dev->is_open)
  216.             return -1;
  217.         one = (gx_color_value) (gx_max_color_value / 255);
  218.         prgb[0] = wdev->limgpalette->palPalEntry[(int)color].peRed * one;
  219.         prgb[1] = wdev->limgpalette->palPalEntry[(int)color].peGreen * one;
  220.         prgb[2] = wdev->limgpalette->palPalEntry[(int)color].peBlue * one;
  221.         break;
  222.       case 4:
  223.         if (color == 8)    /* VGA light gray */
  224.             prgb[0] = prgb[1] = prgb[2] = (gx_max_color_value / 4 * 3);
  225.         else
  226.             pc_4bit_map_color_rgb(dev, color, prgb);
  227.         break;
  228.       default:
  229.         prgb[0] = prgb[1] = prgb[2] = 
  230.             (int)color ? gx_max_color_value : 0;
  231.     }
  232.     return 0;
  233. }
  234.  
  235. /* Get Win parameters */
  236. int
  237. win_get_params(gx_device *dev, gs_param_list *plist)
  238. {    int code = gx_default_get_params(dev, plist);
  239.     return code;
  240. }
  241.  
  242. /* Put parameters. */
  243. private int
  244. win_put_alpha_param(gs_param_list *plist, gs_param_name param_name, int *pa,
  245.   bool alpha_ok)
  246. {    int code = param_read_int(plist, param_name, pa);
  247.     switch ( code )
  248.     {
  249.     case 0:
  250.         switch ( *pa )
  251.           {
  252.           case 1:
  253.             return 0;
  254.           case 2: case 4:
  255.             if ( alpha_ok )
  256.               return 0;
  257.           default:
  258.             code = gs_error_rangecheck;
  259.           }
  260.     default:
  261.         param_signal_error(plist, param_name, code);
  262.     case 1:
  263.         ;
  264.     }
  265.     return code;
  266. }
  267.  
  268. /* Set window parameters -- size and resolution. */
  269. /* We implement this ourselves so that we can do it without */
  270. /* closing and opening the device. */
  271. int
  272. win_put_params(gx_device *dev, gs_param_list *plist)
  273. {    int ecode = 0, code;
  274.     bool is_open = dev->is_open;
  275.     int width = dev->width;
  276.     int height = dev->height;
  277.     int old_bpp = dev->color_info.depth;
  278.     int bpp = old_bpp;
  279.     byte *old_flags = wdev->mapped_color_flags;
  280.     int atext = wdev->alpha_text, agraphics = wdev->alpha_graphics;
  281.     bool alpha_ok;
  282.  
  283.     /* Handle extra parameters */
  284.  
  285.     switch ( code = param_read_int(plist, "BitsPerPixel", &bpp) )
  286.     {
  287.     case 0:
  288.         if ( dev->is_open && bpp != old_bpp )
  289.           ecode = gs_error_rangecheck;
  290.         else
  291.           {    /* Don't release existing mapped_color_flags. */
  292.             if ( bpp != 8 )
  293.               wdev->mapped_color_flags = 0;
  294.             code = win_set_bits_per_pixel(wdev, bpp);
  295.             if ( code < 0 )
  296.               ecode = code;
  297.             else
  298.               break;
  299.           }
  300.         goto bppe;
  301.     default:
  302.         ecode = code;
  303. bppe:        param_signal_error(plist, "BitsPerPixel", ecode);
  304.     case 1:
  305.         break;
  306.     }
  307.  
  308.     alpha_ok = wdev->color_info.depth >= 8;
  309.     if ( (code = win_put_alpha_param(plist, "TextAlphaBits", &wdev->alpha_text, alpha_ok)) < 0 )
  310.       ecode = code;
  311.     if ( (code = win_put_alpha_param(plist, "GraphicsAlphaBits", &wdev->alpha_graphics, alpha_ok)) < 0 )
  312.       ecode = code;
  313.  
  314.     if ( ecode >= 0 )
  315.       {    /* Prevent gx_default_put_params from closing the device. */
  316.         dev->is_open = false;
  317.         ecode = gx_default_put_params(dev, plist);
  318.         dev->is_open = is_open;
  319.       }
  320.     if ( ecode < 0 )
  321.       {    /* If we allocated mapped_color_flags, release it. */
  322.         if ( wdev->mapped_color_flags != 0 && old_flags == 0 )
  323.           gs_free(wdev->mapped_color_flags, 4096, 1,
  324.               "win_put_params");
  325.         wdev->mapped_color_flags = old_flags;
  326.         if ( bpp != old_bpp )
  327.           win_set_bits_per_pixel(wdev, old_bpp);
  328.         wdev->alpha_text = atext;
  329.         wdev->alpha_graphics = agraphics;
  330.         return ecode;
  331.       }
  332.     if ( wdev->mapped_color_flags == 0 && old_flags != 0 )
  333.       {    /* Release old mapped_color_flags. */
  334.         gs_free(old_flags, 4096, 1, "win_put_params");
  335.       }
  336.  
  337.     /* Hand off the change to the implementation. */
  338.     if ( is_open && (bpp != old_bpp ||
  339.              dev->width != width || dev->height != height)
  340.        )
  341.     {    int ccode;
  342.         (*wdev->free_bitmap)(wdev);
  343.         ccode = (*wdev->alloc_bitmap)(wdev, (gx_device *)wdev);
  344.         if ( ccode < 0 )
  345.         {    /* Bad news!  Some of the other device parameters */
  346.             /* may have changed.  We don't handle this. */
  347.             /* This is ****** WRONG ******. */
  348.             dev->width = width;
  349.             dev->height = height;
  350.             win_set_bits_per_pixel(wdev, old_bpp);
  351.             wdev->alpha_text = atext;
  352.             wdev->alpha_graphics = agraphics;
  353.             (*wdev->alloc_bitmap)(wdev, dev);
  354.             return ccode;
  355.         }
  356.     }
  357.  
  358.     return 0;
  359. }
  360.  
  361. /* Get the number of alpha bits. */
  362. int
  363. win_get_alpha_bits(gx_device *dev, graphics_object_type type)
  364. {    return (type == go_text ? wdev->alpha_text : wdev->alpha_graphics);
  365. }
  366.  
  367. /* ------ Internal routines ------ */
  368.  
  369. #undef wdev
  370.  
  371.  
  372.  
  373. /* out of memory error message box */
  374. int
  375. win_nomemory(void)
  376. {
  377.            MessageBox((HWND)NULL,(LPSTR)"Not enough memory",(LPSTR) szAppName, MB_ICONSTOP);
  378.     return gs_error_limitcheck;
  379. }
  380.  
  381.  
  382. LPLOGPALETTE
  383. win_makepalette(gx_device_win *wdev)
  384. {    int i, val;
  385.     LPLOGPALETTE logpalette;
  386.     logpalette = (LPLOGPALETTE)gs_malloc(1, sizeof(LOGPALETTE) + 
  387.         (1<<(wdev->color_info.depth)) * sizeof(PALETTEENTRY),
  388.         "win_makepalette");
  389.     if (logpalette == (LPLOGPALETTE)NULL)
  390.         return(0);
  391.     logpalette->palVersion = 0x300;
  392.     logpalette->palNumEntries = wdev->nColors;
  393.     for (i=0; i<wdev->nColors; i++) {
  394.       logpalette->palPalEntry[i].peFlags = 0;
  395.       switch (wdev->nColors) {
  396.         case 64:
  397.           /* colors are rrggbb */
  398.           logpalette->palPalEntry[i].peRed   = ((i & 0x30)>>4)*85;
  399.           logpalette->palPalEntry[i].peGreen = ((i & 0xC)>>2)*85;
  400.           logpalette->palPalEntry[i].peBlue  = (i & 3)*85;
  401.           break;
  402.         case 16:
  403.           /* colors are irgb */
  404.           val = (i & 8 ? 255 : 128);
  405.           logpalette->palPalEntry[i].peRed   = i & 4 ? val : 0;
  406.           logpalette->palPalEntry[i].peGreen = i & 2 ? val : 0;
  407.           logpalette->palPalEntry[i].peBlue  = i & 1 ? val : 0;
  408.           if (i == 8) {    /* light gray */
  409.               logpalette->palPalEntry[i].peRed   = 
  410.               logpalette->palPalEntry[i].peGreen = 
  411.               logpalette->palPalEntry[i].peBlue  = 192;
  412.           }
  413.           break;
  414.         case 2:
  415.           logpalette->palPalEntry[i].peRed =
  416.             logpalette->palPalEntry[i].peGreen =
  417.             logpalette->palPalEntry[i].peBlue = (i ? 255 : 0);
  418.           break;
  419.       }
  420.     }
  421.     return(logpalette);
  422. }
  423.  
  424.   
  425. private int
  426. win_set_bits_per_pixel(gx_device_win *wdev, int bpp)
  427. {
  428. static const gx_device_color_info win_24bit_color = dci_color(24,255,255);
  429. static const gx_device_color_info win_8bit_color = dci_color(8,31,4);
  430. static const gx_device_color_info win_ega_color = dci_pc_4bit;
  431. static const gx_device_color_info win_vga_color = dci_pc_4bit;
  432. static const gx_device_color_info win_mono_color = dci_black_and_white;
  433.     HDC hdc;
  434.     switch(bpp) {
  435.         case 24:
  436.         wdev->color_info = win_24bit_color;
  437.         wdev->nColors = -1;
  438.         break;
  439.         case 8:
  440.         /* use 64 static colors and 166 dynamic colors from 8 planes */
  441.         wdev->color_info = win_8bit_color;
  442.         wdev->nColors = 64;
  443.         break;
  444.         case 4:
  445.         hdc = GetDC(NULL);
  446.         if (GetDeviceCaps(hdc, VERTRES) <= 350)
  447.             wdev->color_info = win_ega_color;
  448.         else
  449.             wdev->color_info = win_vga_color;
  450.         ReleaseDC(NULL,hdc);
  451.         wdev->nColors = 16;
  452.         break;
  453.         case 1:
  454.         wdev->color_info = win_mono_color;
  455.         wdev->nColors = 2;
  456.         break;
  457.         default:
  458.         return (gs_error_rangecheck);
  459.     }
  460.     wdev->BitsPerPixel = bpp;
  461.  
  462.     /* If necessary, allocate and clear the mapped color flags. */
  463.     if ( bpp == 8 )
  464.     {    if ( wdev->mapped_color_flags == 0 )
  465.         {    wdev->mapped_color_flags = gs_malloc(4096, 1, "win_set_bits_per_pixel");
  466.             if ( wdev->mapped_color_flags == 0 )
  467.               return_error(gs_error_VMerror);
  468.         }
  469.         memset(wdev->mapped_color_flags, 0, 4096);
  470.     }
  471.     else
  472.     {    gs_free(wdev->mapped_color_flags, 4096, 1, "win_set_bits_per_pixel");
  473.         wdev->mapped_color_flags = 0;
  474.     }
  475.     return 0;
  476. }
  477.  
  478.